home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 12 - 1996 / 12.08 Aug 96 / Shared Libes CPX / Example Libraries / C++ Lib Example / Headers / OOSharedLib.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-07-23  |  449 b   |  28 lines  |  [TEXT/MPCC]

  1. #ifndef OOSHAREDLIB_H
  2. #define OOSHAREDLIB_H
  3. /*
  4.     OOSharedLib.h
  5.     
  6.     Purpose: Header file for OOSharedLib.c
  7.     
  8.     This is the public function interface.
  9. */
  10.  
  11. #include "OOSharedLibStructs.h"
  12.  
  13. #if defined(__cplusplus)
  14. extern "C" {
  15. #endif
  16.  
  17.  
  18. void get_average(data_cache *data);
  19. void get_maximum(data_cache *data);
  20. void get_minimum(data_cache *data);
  21. void get_sum(data_cache *data);
  22. void get_variance(data_cache *data);
  23.  
  24. #if defined(__cplusplus)
  25. }
  26. #endif
  27. #endif
  28.